gui/macOS: Fix emitted signal in file provider sync status GUI component
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Mon, 3 Mar 2025 18:35:41 +0000 (02:35 +0800)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Thu, 6 Mar 2025 08:12:49 +0000 (08:12 +0000)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/macOS/ui/FileProviderSyncStatus.qml

index cd63766798778d33b481c66f4c89c3c6a2e1599b..61db9ae98c31475f5993c0e335dc6027699da1c9 100644 (file)
@@ -71,10 +71,10 @@ GridLayout {
         text: qsTr("Request sync")
         visible: !root.syncStatus.syncing
         hoverEnabled: true
-        onClicked: root.controller.signalFileProviderDomain(root.accountUserIdAtHost)
+        onClicked: root.domainSignalRequested()
 
         ToolTip.visible: hovered
         ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval
         ToolTip.text: qsTr("Request a sync of changes for the VFS environment.\nmacOS may ignore or delay this request.")
     }
-}
\ No newline at end of file
+}